jQuery(document).ready(function () { let navMenu = jQuery('.nav-menu').first(); let beforeThis = jQuery('.accion-pasos').first().parent(); let afterThis = jQuery('.row>.col-md-8').first(); //chequeo si el nodo tiene campos Descargas o Tramites relacionados if( jQuery('#descargas').length || jQuery('#tramites').length) { // Define the media query const mediaQuery = window.matchMedia('(max-width: 992px)'); // Function to move the block based on the media query function handleMediaQueryChange(event) { if (event.matches) { // If media query matches (mobile/tablet) navMenu.insertBefore(beforeThis); } else { // If media query doesn't match (desktop) navMenu.insertAfter(afterThis); } } // Add a listener for changes to the media query mediaQuery.addListener(handleMediaQueryChange); // Call the function initially to set the correct position handleMediaQueryChange(mediaQuery); } });